/* Global */
* {
	border: 0;
	margin: 0;
	box-sizing: border-box;
	font-weight: 500;
	font-family: "Barlow", sans-serif;
}

:root {
	--blue: #176fb5;
	--dark-blue: #001137;
	--gray: #666666;
	--orange: #ee742f;
	--play-btn-bg: #00345fc2;
	--founders-bg: #000b10;
	--btn-hover: #084a7e;
	--input-color: #bfbfbf;
	--input-bg: #f5f5f5;
}

section {
	padding: 100px 0;
	max-width: 100%;
	height: auto;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

img {
	width: 100%;
}

video {
	width: 100%;
	height: 100%;
}

h2 {
	font-weight: 700;
	font-size: 60px;
	margin-bottom: 20px;
}

.logo {
	display: flex;
	justify-content: center;
}

.logo img {
	width: 250px;
}

.container {
	margin: 0 250px;
	max-width: 100%;
	height: auto;
}

.grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	place-items: center;
}

.btn {
	width: 150px;
	padding: 15px 20px;
	font-size: 20px;
	color: #fff;
	background-color: var(--blue);
	border-radius: 10px;
	cursor: pointer;
	margin-top: 10px;
	transition: 0.3s;
	display: inline-block;
	text-align: center;
}

.btn:hover {
	background-color: var(--btn-hover);
}

.vid-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	font-size: 20px;
	display: grid;
	place-content: center;
	color: #fff;
	background-color: var(--play-btn-bg);
	cursor: pointer;
}

/* Start Custom Scroll Bar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background-color: var(--input-bg);
}

::-webkit-scrollbar-thumb {
	background-color: var(--blue);
	border-radius: 10px;
	height: 150px;
}

/* End Custom Scroll Bar */
/* Header Start */
.menu {
	font-size: 26px;
	cursor: pointer;
	display: none;
}

.logo-m {
	display: none;
}

header {
	position: relative;
	width: 100%;
}

header nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0 10px;
	font-size: 20px;
}

header nav ul li {
	position: relative;
	text-align: center;
	cursor: pointer;
	transition: 0.3s;
}

header nav ul li a {
	color: var(--gray);
}

header nav ul li:not(.contact) a::before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -15px;
	left: 0;
	background-color: var(--blue);
	transition: 0.3s;
}

header nav ul li.active a,
header nav ul li:hover a {
	color: var(--blue);
}

header nav ul li.active a::before,
header nav ul li:hover a::before {
	width: 100%;
}

header nav ul .contact {
	padding: 15px 20px;
	border-radius: 10px;
	border: 1px solid var(--blue);
}

header nav ul .contact a {
	color: var(--blue);
}

header nav ul .contact.active,
header nav ul .contact:hover {
	background-color: var(--blue);
}

header nav ul .contact.active a,
header nav ul .contact:hover a {
	color: #fff;
}

/* Header End */
/* Info Start */
.info {
	padding: 150px 0;
	background-image: url(../storage/uploads/slider-bg.png);
	background-size: cover;
}

.info .container .text {
	height: 100%;
}

.info .container .text h2 {
	color: #fff;
	font-size: 70px;
}

.info .container .text p {
	color: #fff;
	font-size: 24px;
	line-height: 1.3;
	margin-bottom: 30px;
}

.info .container .text .watch {
	margin-right: 15px;
}

.info .container .video {
	position: relative;
	width: 100%;
}

/* .info .container .video.full {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 100%;
} */
/* Info End */
/* Start About */
.about .container .content p {
	color: var(--gray);
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 30px;
}

.about .container .img-about {
	display: grid;
	grid-auto-rows: minmax(100px, auto);
	grid-template-areas:
		"head head head head head head"
		"left left left right right right";
	gap: 10px;
}

.about .container .img .img-1 {
	grid-area: head;
}

.about .container .img .img-2 {
	grid-area: left;
}

.about .container .img .img-3 {
	grid-area: right;
}

.about .container .img img {
	margin: auto;
}

/* End About */
/* Start Features */
.features {
	background-image: url(../storage/uploads/bg.png);
	background-size: cover;
}

.features h2 {
	text-align: center;
	color: #fff;
	margin-bottom: 40px;
}

.features .feature {
	padding-left: 10px;
}

.features .feature li {
	margin-bottom: 20px;
	color: #fff;
	font-size: 18px;
	display: flex;
	align-items: center;
}

.features .feature li span {
	margin-right: 15px;
	min-width: 50px;
	min-height: 50px;
	border-radius: 50%;
	background-color: var(--blue);
	display: grid;
	place-content: center;
}

/* End Features */
/* Start Video */
section.video {
	position: relative;
	background-color: var(--blue);
}

/* End Video */
/* Start Founders */
.founders {
	background-color: var(--founders-bg);
}

.founders h2 {
	text-align: center;
	color: #fff;
	margin-bottom: 40px;
}

.founders .container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
}

.founders .container .card {
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: linear-gradient(90deg, #151c1f 0%, rgba(17, 26, 31, 0.43) 100%);
	border-radius: 20px;
}

.founders .container .card .img {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #fff;
}

.founders .container .card .img img {
	width: 100%;
	height: 100%;
	-webkit-object-fit: cover;
	object-fit: cover;
}

.founders .container .card .name {
	margin-top: 15px;
	color: #fff;
	font-size: 20px;
}

.founders .container .card .job {
	color: #676767;
}

/* End Founders */
/* Start Footer */
footer {
	padding: 50px 0;
}

footer .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

footer .contacts {
	padding: 0;
}

footer .contacts li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

footer .contacts li span:first-child {
	display: grid;
	place-content: center;
	margin-right: 10px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: var(--blue);
	color: #fff;
}

footer .contacts li span:last-child {
	font-size: 18px;
	font-weight: 700;
}

footer .follow h3 {
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 10px;
	text-align: right;
}

footer .follow .links {
	display: flex;
}

footer .follow .links a {
	display: grid;
	place-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
}

footer .follow .links .facebook {
	background-color: #1877f2;
}

footer .follow .links .instagram {
	background-color: var(--orange);
	margin-left: 15px;
}

footer .follow .links .twitter {
	background-color: #1da1f2;
	margin-left: 15px;
}

footer .follow .links .youtube {
	background-color: #ff0000;
	margin-left: 15px;
}

/* End Footer */

/* ######################################################### */
/* ######################################################### */

/* Start About Us Page */
.about .about-edit {
	margin-top: 100px;
}

.page {
	padding: 0 0 100px 0;
}

.page .page-header {
	text-align: center;
	background-image: url(../storage/uploads/slider-bg.png);
	background-size: cover;
	color: #fff;
	padding: 100px 0;
	margin: 0;
}

.page .page-p {
	padding: 50px 350px;
	text-align: center;
	color: var(--gray);
	font-size: 20px;
	line-height: 1.3;
	margin-top: 30px;
}

.page .page-p-edit {
	padding-bottom: 0;
	margin-top: 0;
}

.page .page-p span {
	color: #000;
	font-weight: 700;
}

.idea {
	position: relative;
	padding: 100px;
	background-image: url(../storage/uploads/about-us-bg.png);
	background-size: cover;
	color: #fff;
}

.idea::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: var(--blue);
	opacity: 0.8;
	left: 0;
	top: 0;
	z-index: -1;
}

.idea h2 {
	text-align: center;
}

.idea p {
	text-align: center;
	font-size: 20px;
	line-height: 1.3;
}

/* End About Us Page */
/* Start Feature Page */
.f .page-p {
	margin-bottom: 350px;
}

.feature-page {
	position: relative;
	padding: 100px 0 100px 0;
	background-image: url(../storage/uploads/about-us-bg.png);
	background-size: cover;
	color: #fff;
}

.feature-page::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: var(--blue);
	opacity: 0.8;
	left: 0;
	top: 0;
	z-index: -1;
}

.feature-page .container img {
	margin-top: -39%;
}

.feature-page .feature {
	margin-top: 40px;
	padding: 0;
}

.feature-page .feature li {
	color: #fff;
	margin-bottom: 20px;
	font-size: 18px;
	display: flex;
	align-items: center;
}

.feature-page .feature li span {
	margin-right: 15px;
	min-width: 50px;
	min-height: 50px;
	border-radius: 50%;
	color: var(--blue);
	background-color: #fff;
	display: grid;
	place-content: center;
}

/* End Feature Page */
/* Start Appointment Page */
.form {
	background-image: url(../storage/uploads/form-bg.png);
	background-size: cover;
}

.appoint {
	padding: 0;
}

.appoint .container {
	display: grid;
	grid-template-columns: repeat(2, minmax(250px, 1fr));
	gap: 50px;
	margin-bottom: 50px;
}

.appoint .container .card {
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--blue);
	border-radius: 20px;
}

.appoint .container .card .img {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #fff;
}

.appoint .container .card .img img {
	width: 100%;
	height: 100%;
	-webkit-object-fit: cover;
	object-fit: cover;
}

.appoint .container .card .name {
	margin-top: 15px;
	color: #fff;
	font-size: 20px;
}

.appoint .container .card .job {
	color: #cccccc;
}

.appoint .book-form {
	width: 1100px;
	background: #ffffff;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
	border-radius: 20px;
	margin: auto;
	padding: 50px 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.appoint .book-form h2 {
	text-align: center;
	color: var(--blue);
	font-size: 50px;
	margin-bottom: 30px;
}

.appoint .book-form form input {
	background-color: var(--input-bg);
	caret-color: var(--blue);
	border-radius: 10px;
	padding: 20px 25px;
	outline: none;
	width: 100%;
	margin-bottom: 20px;
	font-size: 18px;
}

.appoint .book-form form input::placeholder {
	color: var(--input-color);
}

.appoint .book-form form textarea {
	width: 100%;
	background-color: var(--input-bg);
	caret-color: var(--blue);
	border-radius: 10px;
	padding: 20px 25px;
	outline: none;
	resize: none;
	height: 180px;
	font-size: 18px;
}

.appoint .book-form form textarea::placeholder {
	color: var(--input-color);
}

.appoint .book-form .btn {
	width: fit-content;
	margin-top: 40px;
}

/* End Appointment Page */
/* Start Contact Page */

.contact .book-form {
	background: none;
	box-shadow: none;
}

.contact .book-form form input {
	background-color: #fff;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

.contact .book-form form textarea {
	background-color: #fff;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

.contact .btn {
	width: 150px;
	padding: 15px 20px;
	font-size: 20px;
	color: var(--blue);
	background-color: transparent;
	border-radius: 10px;
	border: 1px solid var(--blue);
	cursor: pointer;
	margin-top: 10px;
	transition: 0.3s;
}

.contact .btn:hover {
	background-color: var(--blue);
	color: #fff;
}

/* StEndart Contact Page */

/* Start scroll to top button */
.to-top {
	position: fixed;
	bottom: -100px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: grid;
	place-content: center;
	font-size: 20px;
	background-color: var(--blue);
	color: #fff;
	cursor: pointer;
	transition: 0.3s;
}

.to-top:hover {
	background-color: var(--btn-hover);
}

.to-top.active {
	bottom: 30px;
}

/* End scroll to top button */

/* Media Query For 1200px */
@media (max-width: 1500px) {
	.container {
		margin: 0 100px;
	}
}

/* Start Tablet Screen */
@media (max-width: 991px) {
	.container {
		margin: 0 50px;
	}

	.logo img {
		width: 150px;
	}

	.btn {
		width: 140px;
		font-size: 16px;
	}

	header nav ul li a {
		font-size: 16px;
	}

	h2 {
		font-size: 35px;
	}

	.info .container .text h2 {
		font-size: 35px;
	}

	.info .container .text p {
		font-size: 16px;
	}

	.page .page-p {
		padding: 50px 100px;
	}

	.page .page-p-edit {
		padding-bottom: 0;
		margin-top: 0;
	}

	.idea {
		padding: 100px 50px;
	}

	.f .page-p {
		margin-bottom: 100px;
	}

	.appoint .book-form {
		width: 700px;
	}

	.appoint .book-form h2 {
		font-size: 35px;
	}

	.founders .container .card img {
		width: 140px;
		height: 140px;
	}
}

/* End Tablet Screen */

/* Start Mobile Screen */
@media (max-width: 576px) {
	.container {
		margin: 0 25px;
	}

	a {
		font-size: 14px;
	}

	h2 {
		font-size: 35px;
	}

	p {
		font-size: 16px;
	}

	.grid {
		grid-template-columns: none;
		grid-template-rows: repeat(2, 1fr);
		gap: 20px;
	}

	.btn {
		width: 140px;
		font-size: 18px;
	}

	header {
		padding: 10px 0;
	}

	header nav .menu {
		display: block;
	}

	header nav ul .logo {
		display: none;
	}

	header nav .logo-m {
		display: flex;
		justify-content: center;
	}

	header nav .logo-m img {
		width: 100px;
	}

	header nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	header nav ul {
		position: absolute;
		top: 85px;
		right: 25px;
		width: 200px;
		background-color: #fff;
		border-top: 3px solid var(--blue);
		flex-direction: column;
		display: none;
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.35);
		transition: 0.3s;
	}

	header nav ul li:not(.contact) {
		padding: 10px 15px;
		margin-bottom: 5px;
		border-bottom: 1px solid var(--input-color);
		width: 100%;
	}

	header nav ul .contact {
		padding: 10px 20px;
	}

	header nav ul li a::before {
		display: none;
	}

	header nav ul.active {
		display: flex;
	}

	.info .container .text h2 {
		font-size: 39px;
	}

	.info .container .text p {
		font-size: 16px;
	}

	.about .container .content p {
		font-size: 16px;
	}

	.about .grid {
		gap: 0;
	}

	.appoint .container {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.about .container .img-about {
		margin-top: 20px;
	}

	.founders .container {
		grid-template-columns: none;
		grid-template-rows: repeat(2, 1fr);
	}

	footer .container {
		flex-direction: column;
	}

	.founders .container .card img {
		width: 130px;
		height: 130px;
	}

	footer .container .contacts {
		padding: 20px 0;
	}

	footer .contacts li span:last-child {
		font-size: 16px;
	}

	footer .container .logo {
		order: -1;
		padding: 0 0 20px;
	}

	footer .container .follow {
		padding: 20px 0;
	}

	footer .container .follow h3 {
		text-align: center;
		font-size: 18px;
	}

	.page .page-p {
		font-size: 16px;
	}

	/* Pages */
	.page .page-p {
		padding: 50px 25px;
	}

	.page .page-p-edit {
		padding-bottom: 0;
		margin-top: 0;
	}

	.idea {
		padding: 100px 0;
	}

	.idea p {
		font-size: 18px;
	}

	.f .page-p {
		margin-bottom: 0;
	}

	.feature-page .container {
		position: relative;
	}

	.feature-page .container img {
		margin: 0;
		position: absolute;
		top: -75%;
	}

	.appoint .book-form {
		width: 350px;
		padding: 30px 20px;
	}

	.appoint .book-form h2 {
		font-size: 28px;
	}
}

/* End Mobile Screen */